1.2.2.2. alpha.core.CastSize (C)
Check when casting a malloc'ed type T, whether the size is a multiple of the size of T.

Examples:

void test() {
  int *x = (int *) malloc(11); // warn
}